| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .alert-page {
- width: 100vw;
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #1a1a2e;
- }
- .donation-alert {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- text-align: center;
- width: 100%;
- height: 100%;
- &.alert-show {
- opacity: 1;
- transform: translateY(0);
- }
- &__image {
- margin-bottom: 16px;
- img {
- max-width: 200px;
- max-height: 200px;
- object-fit: contain;
- filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
- }
- }
- &__content {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
- &__sender {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- font-weight: 700;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
- }
- &__name {
- font-family: var(--nickname-font-family, inherit);
- font-size: var(--nickname-font-size, 24px);
- color: var(--nickname-font-color, #FFD700);
- }
- &__amount {
- font-family: var(--amount-font-family, inherit);
- font-size: var(--amount-font-size, 24px);
- color: var(--amount-font-color, #FF6B35);
- }
- &__template-text {
- font-family: var(--template-font-family, inherit);
- font-size: var(--template-font-size, 24px);
- color: var(--template-font-color, #FFFFFF);
- }
- &__message {
- font-family: var(--message-font-family, inherit);
- font-size: var(--message-font-size, 18px);
- font-weight: 500;
- color: var(--message-font-color, #FFFFFF);
- text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
- max-width: 400px;
- word-break: keep-all;
- line-height: 1.4;
- }
- &__crew {
- font-size: 14px;
- color: #A0D2FF;
- margin-top: 4px;
- }
- }
- @keyframes alertFadeOut {
- from {
- opacity: 1;
- transform: scale(1);
- }
- to {
- opacity: 0;
- transform: scale(0.8);
- }
- }
|